home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
kermit.columbia.edu
/
kermit.columbia.edu.tar
/
kermit.columbia.edu
/
newsgroups
/
misc.19950329-19950528
/
000441_news@columbia.edu_Tue May 23 14:25:46 1995.msg
< prev
next >
Wrap
Internet Message Format
|
1995-07-31
|
2KB
Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA19129
(5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 23 May 1995 10:26:05 -0400
Received: by apakabar.cc.columbia.edu id AA08682
(5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 23 May 1995 10:25:54 -0400
Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
Newsgroups: comp.protocols.kermit.misc
Subject: Re: MAIL command of MSKERMIT 3.14
Date: 23 May 1995 14:25:46 GMT
Organization: Columbia University
Lines: 26
Message-Id: <3psr9a$8es@apakabar.cc.columbia.edu>
References: <Pine.PCW.3.91.950517154012.5391B-100000@moggie.acs.wmich.edu>
Nntp-Posting-Host: watsun.cc.columbia.edu
Apparently-To: kermit.misc@watsun.cc.columbia.edu
In article <Pine.PCW.3.91.950517154012.5391B-100000@moggie.acs.wmich.edu>,
John D. Tucker <tucker@mickey.acs.wmich.edu> wrote:
: Under MSKERMIT version 3.13 (patch level 21), I could issue a command of
: mail c:\$temp$\bmail.* john.tucker@wmich.edu
: and all BMAIL files would be mailed. The BMAIL files would be parts
: 1 to N parts of a UUENCODED binary. This works successfully.
:
: Under MSKERMIT version 3.14 (patch level 3), issuing the same command
: results in a report of all parts being successfully mailed but
: only part 1 is received.
:
This appears to be a bug in MS-DOS Kermit 3.14. It will be fixed either
in a patch or, if that is not possible, in the next release. Meanwhile,
you can work around it like this:
set count \ffiles(c:\$temp$\bmail.*)
assign \%i 1
:loop
mail c:\$temp$\bmail.\%i fdc
increment \%i
if count goto loop
finish
to send bmail.1 through bmail.n. The other Kermit must be in server mode.
- Frank